home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD ROM Paradise Collection 4
/
CD ROM Paradise Collection 4 1995 Nov.iso
/
bbs
/
ho51.zip
/
homisc.bat
< prev
next >
Wrap
DOS Batch File
|
1994-09-23
|
1KB
|
57 lines
@echo off
rem
rem MISC another sample Hands On menu
rem updated Fri 09-23-1994 16:57:52
rem beep 5
:start
homnu menu "t:Miscellaneous" "Setup" "File manager" "Chat - hotalk" "2nd Chat" "DOS Shell" "Manuals & Misc" "X_exit" nc
rem if errorlevel == 8 goto :end
if errorlevel == 7 goto :end
if errorlevel == 6 goto :help
if errorlevel == 5 goto :shell
if errorlevel == 4 goto :chat2
if errorlevel == 3 goto :chat1
if errorlevel == 2 goto :editor
if errorlevel == 1 goto :setup
goto :end
:setup
rem directed setup
1sthand setup
goto :START
:editor
rem obviously this particular editor is hard coded, but you can change it
telemenu
goto :START
:chat1
rem the smaller chat
cls
hotalk
pause
goto :start
:chat2
cls
telemenu chat
goto :start
:shell
cls
DIR/W
echo ....................................................
echo Please enter EXIT to return to the menu
echo ....................................................
command
goto :start
rem manuals & misc
:help
rem choose 'manuals' to browse the manuals
1sthand
goto :start
:end
homenu.bat